Fix for oldtitle too
authorAryeh Gregor <simetrical@users.mediawiki.org>
Sun, 10 Dec 2006 02:39:30 +0000 (02:39 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Sun, 10 Dec 2006 02:39:30 +0000 (02:39 +0000)
includes/DifferenceEngine.php

index c423ebc..77fef48 100644 (file)
@@ -564,8 +564,8 @@ CONTROL;
                        $t = $wgLang->timeanddate( $this->mOldRev->getTimestamp(), true );
                        $oldLink = $this->mOldPage->escapeLocalUrl( 'oldid=' . $this->mOldid );
                        $oldEdit = $this->mOldPage->escapeLocalUrl( 'action=edit&oldid=' . $this->mOldid );
-                       $this->mOldtitle = "<strong><a href='$oldLink'>" . htmlspecialchars( wfMsg( 'revisionasof', $t ) )
-                               . "</a></strong> (<a href='$oldEdit'>" . htmlspecialchars( wfMsg( 'editold' ) ) . "</a>)";
+                       $this->mOldtitle = "<a href='$oldLink'>" . htmlspecialchars( wfMsg( 'revisionasof', $t ) )
+                               . "</a> (<a href='$oldEdit'>" . htmlspecialchars( wfMsg( 'editold' ) ) . "</a>)";
                }
 
                return true;